home *** CD-ROM | disk | FTP | other *** search
/ <GEEK> 1 / GEEK1.ISO / geekko / dos.dxr / 00003_The Loop.ls < prev    next >
Encoding:
Text File  |  1997-05-24  |  344 b   |  20 lines

  1. on exitFrame
  2.   go(#loop)
  3. end
  4.  
  5. on fIStEXT
  6.   set f to ["F"]
  7.   repeat with i = 1 to 50
  8.     put getAt(f, i) into char i of field "TextFis"
  9.     updateStage()
  10.     append(f, "F")
  11.   end repeat
  12.   repeat with i = 50 to 100
  13.     put getAt(f, i) into char i of field "TextFis"
  14.     updateStage()
  15.     append(f, "S")
  16.   end repeat
  17.   set f to []
  18.   go(#next)
  19. end
  20.